home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT-D.SPK
/
lclint
/
guide
/
noeffect.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-08-26
|
169b
|
11 lines
extern void nomodcall (int *x) /*@*/;
extern void mysterycall (int *x);
int noeffect (int *x, int y)
{
y == *x;
nomodcall (x);
mysterycall (x);
return *x;
}